home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / aix_IY45329.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  49 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(14414);
  10.  script_version ("$Revision: 1.4 $");
  11.  script_cve_id("CVE-2003-1018");
  12.  script_bugtraq_id(9254);
  13.  name["english"] = "AIX 5.2 : IY45329";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host is missing AIX Critical Security Patch number IY45329
  19. (SECURITY: Format string vulnerability in /usr/bin/enq and).
  20.  
  21. You should install this patch for your system to be up-to-date.
  22.  
  23. Solution : http://www-912.ibm.com/eserver/support/fixes/ 
  24. Risk factor : High";
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Check for patch IY45329"; 
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  35.  family["english"] = "AIX Local Security Checks";
  36.  script_family(english:family["english"]);
  37.  
  38.  script_dependencies("ssh_get_info.nasl");
  39.  script_require_keys("Host/AIX/lslpp");
  40.  exit(0);
  41. }
  42.  
  43.  
  44.  
  45. include("aix.inc");
  46.  
  47.  if( aix_check_patch(release:"5.2", patch:"IY45329", package:"bos.rte.printers.5.2.0.11") < 0 ) 
  48.    security_hole(port);
  49.